home *** CD-ROM | disk | FTP | other *** search
/ USA Bestseller / USA BESTSELLER Vol 1-95 (Hepp-Computer)(1995).iso / e202 / install.bat < prev    next >
DOS Batch File  |  1994-08-22  |  485b  |  24 lines

  1. echo off
  2. echo.
  3. echo  INSTALL for CRUSH
  4. if exist CRUSH.EXE goto go
  5. echo  INSTALL must be run from the distribution disk or from
  6. echo  a directory containing the distribution files.
  7. goto exit
  8. :go
  9. if not "%1"=="" goto ok
  10. echo.
  11. echo  USAGE: INSTALL directory
  12. echo.
  13. echo  For example:
  14. echo    INSTALL C:
  15. echo    INSTALL \CRUSH1\
  16. echo    INSTALL C:\UTILS\
  17. echo.
  18. echo ("directory" must end in ":" or "\" and must already exist)
  19. echo.
  20. goto exit
  21. :ok
  22. copy *.* %1*.*
  23. :exit
  24.